added EXEEXT to the tools used in some commands
authorMichael Schumacher <schumaml@cvs.gnome.org>
Sat, 6 Jan 2007 13:00:28 +0000 (13:00 +0000)
committerMichael Schumacher <schumaml@src.gnome.org>
Sat, 6 Jan 2007 13:00:28 +0000 (13:00 +0000)
2007-01-06  Michael Schumacher  <schumaml@cvs.gnome.org>

* docs/Makefile.am: added EXEEXT to the tools used in some
commands

* docs/tools/changelog2rss: remove unused SET_TITLE and
LISTING_TYPE; the former did cause an error on Windows

svn path=/trunk/; revision=191

ChangeLog
docs/Makefile.am
docs/tools/changelog2rss

index 24c14aeea1f24b2e537eb3e3ed978f1fda0aa1c4..1ab279df8369300eb9075a419d49ab01ca2a3d67 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2007-01-06  Michael Schumacher  <schumaml@cvs.gnome.org>
+
+       * docs/Makefile.am: added EXEEXT to the tools used in some
+       commands 
+
+       * docs/tools/changelog2rss: remove unused SET_TITLE and
+       LISTING_TYPE; the former did cause an error on Windows
+
 2007-01-01  Kevin Cozens  <kcozens@cvs.gnome.org>
 
        * docs/index-static.html.in: Fixes for various punctuation, grammar,
index a30a6b6fca7ccd3e61bc80abba3a3a8a460d91e4..7e3d230920249643fa74e5311415070d7790f31f 100644 (file)
@@ -29,13 +29,13 @@ MAINTAINERCLEANFILES = $(BUILT_EXTRA_DIST)
 all: $(HTML_FILES) rss
 
 
-BablFishPath.html: $(top_builddir)/tests/babl_fish_path_dhtml
+BablFishPath.html: $(top_builddir)/tests/babl_fish_path_dhtml$(EXEEXT)
        echo -n "HTML:"
        echo -n " $@"
        export BABL_PATH="$(top_builddir)/extensions"; $< > $@ &&\
        echo " [OK]" || echo " Fail"
 
-BablFishPath.txt: $(top_builddir)/tests/babl_fish_path_fitness
+BablFishPath.txt: $(top_builddir)/tests/babl_fish_path_fitness$(EXEEXT)
        echo -n "UTF8:"
        echo -n " $@"
        export BABL_PATH="$(top_builddir)/extensions"; $< > $@ &&\
@@ -43,7 +43,7 @@ BablFishPath.txt: $(top_builddir)/tests/babl_fish_path_fitness
        if [ "x"$$CRUCIBLE_ID != "x" ] ;then echo;echo;cat $@;echo;echo;fi
 
 index.html: index-static.html                    \
-           $(top_builddir)/tests/babl_html_dump \
+           $(top_builddir)/tests/babl_html_dump$(EXEEXT) \
            $(top_srcdir)/AUTHORS                \
            $(top_srcdir)/NEWS                   \
            BablFishPath.txt                     \
@@ -51,7 +51,7 @@ index.html: index-static.html                    \
        echo -n "HTML: $@"
        cp $< $@ 
        (which tempfile > /dev/null&& TMPFILE=`tempfile` || TMPFILE="/tmp/babl_build_tempfile" ;\
-       export BABL_PATH="$(top_builddir)/extensions"; $(top_builddir)/tests/babl_html_dump > $$TMPFILE;\
+       export BABL_PATH="$(top_builddir)/extensions"; $(top_builddir)/tests/babl_html_dump$(EXEEXT) > $$TMPFILE;\
        $(top_srcdir)/docs/tools/xml_insert.sh $@ BablBase $$TMPFILE;\
        rm -f $$TMPFILE )
        echo -n "."
index 6cfc6e584cad964e9a075741fce7b953a9242900..62b92f0281deee8f51ae1f88b203b1f06aa16d07 100755 (executable)
@@ -2,10 +2,6 @@
 
 require 'parsedate'
 
-SITE_TITLE = `pwd`.chomp.split('/').last
-
-LISTING_TYPE = 0
-
 class ChangeLogEntry
     attr_accessor :category, :time, :title, :content, :author